home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 5 / TIME_ZON / GENROUTI.H < prev    next >
Text File  |  1991-11-03  |  692b  |  25 lines

  1. /* GenRoutines.h */
  2.  
  3. #define _H_GenRoutines
  4.  
  5. #include <string.h>
  6.  
  7. pascal void outline_ok(DialogPtr,short);
  8. void install_useritem(DialogPtr,short,ProcPtr);
  9. pascal void draw_list(WindowPtr,int);
  10. pascal Boolean check_list(DialogPtr,EventRecord *,int *);
  11. char *ftoa(double,char *,short,short);
  12. void copy_rectangle(Rect *,Rect *);
  13. void set_text(DialogPtr,short,char *);
  14. void get_text(DialogPtr,short,char *);
  15. double get_float(DialogPtr,short);
  16. void set_float(DialogPtr,short,double,short);
  17. short get_radio(DialogPtr,short);
  18. void set_radio(DialogPtr,short,short);
  19. void TimeStamp(char *);
  20. double GetRand(void);
  21. void SetRand(void);
  22. int GetRandInt(int, int);
  23. double GetRandReal(double, double, int);
  24.  
  25.